home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / language / dl_exsrc.zoo / strset.c < prev    next >
C/C++ Source or Header  |  1994-06-28  |  192b  |  15 lines

  1. #include "extras.h"
  2.  
  3. char *strset(string, c)
  4.   char *string;
  5.   int c;
  6. {
  7.   register char *s = string;
  8.  
  9.   if (!s)
  10.     return 0;
  11.   while (*s)
  12.     *s++ = (char)c;
  13.   return string;
  14. }
  15.